home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / quartz / quartz10.lha / Makefile < prev    next >
Makefile  |  1990-05-16  |  678b  |  37 lines

  1. all:
  2.     cd src/munge; make
  3.     cd src/runtime; make
  4.     cd src/presto; make
  5.     cd src/quartz; make
  6.     cd FTexample; make
  7.     cd Pexample; make
  8.  
  9. links:
  10.     ./genlinks
  11.  
  12. cleanlinks:
  13.     rm -f src/runtime/util.c 
  14.     rm -f src/quartz/util.c 
  15.     rm -f src/munge/util.c 
  16.     rm -f src/runtime/*/*.c 
  17.     rm -f src/runtime/*/*.h 
  18.     rm -f src/runtime/*/*.s
  19.     rm -f src/runtime/*/Makefile
  20.     rm -f src/presto/*/*.s
  21.     rm -f src/presto/*/*.h
  22.     rm -f src/presto/*/*.c
  23.     rm -f src/presto/*/Makefile
  24.  
  25. clean:
  26.     cd src/munge; make clean
  27.     cd src/runtime; make clean
  28.     cd src/presto; make clean
  29.     cd src/quartz; make clean
  30.     cd FTexample; make clean
  31.     cd Pexample; make clean
  32.     rm -f bin/munge
  33.     rm -f lib/*.o
  34.     rm -f lib/*.a
  35.     rm -f lib/*.ln
  36.  
  37.